home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / dbtcfg.h < prev    next >
C/C++ Source or Header  |  1999-03-26  |  3KB  |  75 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: dbtcfg.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 09/17/1997  
  9. // Date Last Modified: 03/26/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. Modify this file to customize the string database's user
  32. interface program. 
  33. */
  34. // ----------------------------------------------------------- //   
  35. #ifndef __DBTCFG_HPP
  36. #define __DBTCFG_HPP
  37.  
  38. // Program's title used in main menu for curses (terminal) program
  39. const char *MMTitle = "------- LAN DATABASE PROGRAM'S MAIN MENU -------" ;
  40.  
  41. // Program's name
  42. const char *ProgramName = "LAN Database";
  43.  
  44. // Configuration file information
  45. #ifdef __UNIX__
  46. const char *DefaultCfgFile = ".landb"; // Default  user configuration file
  47. #endif
  48.  
  49. #ifdef __DOS__
  50. const char *DefaultCfgFile = "landb.ini"; // Default  user configuration file
  51. #endif
  52.  
  53. const char *EnvSetting = "LANDBCFG"; // Environment setting for CFG file 
  54.  
  55. // Default file names
  56. // Do not use any file extensions when creating or opening file.
  57. // Both data and index will share the same name with different
  58. // file extensions. The data file will have a .pod extension and
  59. // the index file will have a .btx extension.
  60. #ifdef __UNIX__
  61. // UNIX file systems use a forward slash (/) for path separators
  62. const char *DefaultDBFileName = "landbx"; // Default DB file
  63. #endif
  64.  
  65. #ifdef __DOS__
  66. // DOS file systems use a back slash (\\) for path separators
  67. const char *DefaultDBFileName = "landbx"; // Default DB file
  68. #endif
  69.  
  70. #endif  // __DBTCFG_HPP //
  71. // ----------------------------------------------------------- // 
  72. // ------------------------------- //
  73. // --------- End of File --------- //
  74. // ------------------------------- //
  75.